home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sun Solutions 1997 April to September
/
Sun Solutions CD - APR '97 - SEP '97 (704-3778-12 Rev. H)(Sun Microsystems, Inc.)(1997).iso
/
products
/
bin
/
httpd
/
Solaris_2
/
newwais.pl.bk
< prev
next >
Wrap
Text File
|
1995-10-20
|
4KB
|
155 lines
#!./perl
#
# newwais.pl -- WAIS search interface
#
# from wais.pl
#
# Tony Sanders <sanders@bsdi.com>, Nov 1993
#
# Example configuration (in local.conf):
# map topdir wais.pl &do_wais($top, $path, $query, "database", "title")
#
# this script uses a sneaky feature of Mosaic that interpretes a
# single text input form with the name 'isindex' (case sensitive) to
# the same as a <ISINDEX>. On non-mosaic clients, you wind up with an
# additional query
#
# Note that I know even less about perl than the other two people
# who hacked this, so feel free to send hate mail to pjh@netcom.com
# if I did something really bad (or if there is a better way of
# grabbing the filename off the end of a path.
#
#require 'ctime.pl';
$waisq = "./waisq";
$waisd = "/tmp/.wais/wais";
$src = "catalyst_catalog";
$title = "Example Data";
#
# file type map based on file extension, since all file types
# come back type URL
#
%filetype = (
'html', 'HTML File',
);
#
# code
#
sub send_index {
print "Content-type: text/html\n\n";
print "<HEAD>\n<TITLE>Index of ", $title, "</TITLE>\n</HEAD>\n";
print "<BODY>\n<H1>", $title, "</H1>\n";
print "This is an index of the information on this server. Please\n";
print "type a query in the search dialog.\n<P>";
print "You may use compound searches, such as: <CODE>environment AND cgi</CODE>\n";
print "<ISINDEX>";
}
sub do_wais {
# local($top, $path, $query, $src, $title) = @_;
# strip the escape off of *'s
for (@ARGV){s/\\//g};
do { &'send_index; return; } unless defined @ARGV;
local(@query) = @ARGV;
local($pquery) = join(" ", @query);
local($nquery) = $pquery;
$nquery =~ tr/[A-Z]/[a-z]/;
if (!(($nquery =~ / and /) || ($nquery =~ / or /)))
{
$nquery =~ s/ //g;
}
#
# grab a wais source if there is one
#
local($test) = $ENV{'PATH_INFO'};
if ($test)
{
$test =~ s/\///;
$src = "catalyst_catalog";
$title = $test;
}
close STDERR;
open(STDERR, ">/dev/null");
print "Content-type: text/html\n\n";
$ENV{'HOME'} = "/";
open(WAISQ, "-|") || exec ($waisq, "-c", $waisd, "-m", 200,
"-f", "-", "-S", "$src.src", "-g", $nquery);
print "<HEAD>\n<TITLE>Search of ", $title, "</TITLE>\n</HEAD>\n";
print "<img src=\"/.wais/images/goto_home.gif\">\n";
print "<BODY>\n<H1>Catalyst Catalog on CDware</H1>\n";
print "<HR><FORM method=\"POST\" action=\"/cgi-bin/newwais.pl/$src\">\n";
print "Enter keyword(s):\n";
# print "<input name=\"isindex\" value=\"@query\" size=30></FORM><HR>\n";
print "<input name=\"isindex\" value=\"$pquery\" size=30></FORM><HR>\n";
print "$title contains the following\n";
print "items relevant to <B>\`$pquery\':</B><P>\n";
print "<DL>\n";
local($hits, $score, $headline, $lines, $bytes, $type, $date);
print "<OL>";
while (<WAISQ>) {
/:score\s+(\d+)/ && ($score = $1);
/:number-of-lines\s+(\d+)/ && ($lines = $1);
/:number-of-bytes\s+(\d+)/ && ($bytes = $1);
/:type "(.*)"/ && ($type = $1);
/:headline "(.*)"/ && ($headline = $1); # XXX
/:date "(\d+)"/ && ($date = $1, $hits++, &docdone);
}
print "</OL>";
close(WAISQ);
print "</DL>\n";
if ($hits == 0) {
print "Nothing found.\n";
}
print "</BODY>\n";
}
sub docdone {
if ($headline =~ /Search produced no result/) {
print "<HR>";
print "Search produced no result.";
# print $headline, "<P>\n<PRE>";
# the following was &'safeopen
# open(WAISCAT, "$waisd/$src.cat") || die "$src.cat: $!";
# while (<WAISCAT>) {
# s#(Catalog for database:)\s+.*#$1 <STRONG>Catalyst Catalog on CDware</STRONG>#;
# s#Headline:\s+(.*)#Headline: <A HREF="$1">$1</A>#;
# print;
# }
# close(WAISCAT);
# print "\n</PRE>\n";
} else {
$docname = $headline;
$docname =~ s/\.([^.]*)$//;
$extension= $1;
$docname =~ s/\/([^\/]*)$//;
$docname = $1;
print "<LI><A HREF=\"$headline\"><B>$docname</B></A>\n";
}
$score = $headline = $lines = $bytes = $type = $date = '';
}
eval '&do_wais';